home *** CD-ROM | disk | FTP | other *** search
/ Workbench Design / WB Collection.iso / workbench werkzeuge / uhren & terminkalender / time / sclock / source / sincos_table.c < prev    next >
C/C++ Source or Header  |  1996-04-07  |  1KB  |  49 lines

  1. /****************************************************************************
  2. *
  3. * VERSION
  4. *    $VER: sincos_table.c 1.65 (07.12.93)
  5. *
  6. * DESCRIPTION
  7. *    Sin/Cos table...
  8. *
  9. * AUTHOR
  10. *    Rune Johnsrud
  11. *   Created with the magic "SinCos" creator!
  12. *
  13. * COPYRIGHT
  14. *    (c) 1993 Amiga Freelancers
  15. *
  16. *****************************************************************************/
  17.  
  18. #include <exec/types.h>
  19.  
  20. WORD SinTab[60] =
  21. {
  22.     0, 107, 
  23.     212, 316, 416, 511, 601, 685, 760, 
  24.     828, 886, 935, 973, 1001, 1018, 1023, 
  25.     1018, 1001, 973, 935, 886, 828, 760, 
  26.     685, 601, 512, 416, 316, 212, 107, 
  27.     0, -107, -212, -316, -416, -511, -601, 
  28.     -685, -760, -828, -886, -935, -973, -1001, 
  29.     -1018, -1023, -1018, -1001, -973, -935, -886, 
  30.     -828, -760, -685, -601, -512, -416, -316, 
  31.     -212, -107, 
  32. };
  33.  
  34. WORD CosTab[60] =
  35. {
  36.     1023, 1018, 
  37.     1001, 973, 935, 886, 828, 760, 685, 
  38.     601, 512, 416, 316, 212, 107, 0, 
  39.     -107, -212, -316, -416, -511, -601, -685, 
  40.     -760, -828, -886, -935, -973, -1001, -1018, 
  41.     -1023, -1018, -1001, -973, -935, -886, -828, 
  42.     -760, -685, -601, -512, -416, -316, -212, 
  43.     -107, 0, 107, 212, 316, 416, 511, 
  44.     601, 685, 760, 828, 886, 935, 973, 
  45.     1001, 1018, 
  46. };
  47.  
  48. /* End Of File */
  49.